crypto/tls.clientHelloMsg.supportedSignatureAlgorithms (field)
18 uses
crypto/tls (current package)
handshake_client.go#L123: hello.supportedSignatureAlgorithms = supportedSignatureAlgorithms(minVersion)
handshake_messages.go#L84: supportedSignatureAlgorithms []SignatureScheme
handshake_messages.go#L204: if len(m.supportedSignatureAlgorithms) > 0 {
handshake_messages.go#L212: for _, sigAlgo := range m.supportedSignatureAlgorithms {
handshake_messages.go#L546: m.supportedSignatureAlgorithms = append(
handshake_messages.go#L547: m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg))
handshake_messages.go#L700: supportedSignatureAlgorithms: slices.Clone(m.supportedSignatureAlgorithms),
handshake_server.go#L1020: SignatureSchemes: clientHello.supportedSignatureAlgorithms,
handshake_server_tls13.go#L508: if len(hs.clientHello.supportedSignatureAlgorithms) == 0 {
handshake_server_tls13.go#L521: hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
handshake_server_tls13.go#L679: len(ch.supportedSignatureAlgorithms) != len(ch1.supportedSignatureAlgorithms) ||
handshake_server_tls13.go#L699: for i := range ch.supportedSignatureAlgorithms {
handshake_server_tls13.go#L700: if ch.supportedSignatureAlgorithms[i] != ch1.supportedSignatureAlgorithms[i] {
key_agreement.go#L213: ka.signatureAlgorithm, err = selectSignatureScheme(ka.version, cert, clientHello.supportedSignatureAlgorithms)
key_agreement.go#L342: if !isSupportedSignatureAlgorithm(ka.signatureAlgorithm, clientHello.supportedSignatureAlgorithms) {